home *** CD-ROM | disk | FTP | other *** search
/ Champak 40 / Vol 40.iso / games / table_so.swf / scripts / DefineSprite_84 / frame_1 / DoAction.as
Encoding:
Text File  |  2007-03-21  |  517 b   |  28 lines

  1. stop();
  2. btnPaddle.onRollOver = function()
  3. {
  4.    btnPaddle.bounceBtnIn(120);
  5. };
  6. btnPaddle.onRollOut = function()
  7. {
  8.    btnPaddle.bounceBtnOut();
  9. };
  10. btnPaddle.onRelease = function()
  11. {
  12.    _global.player = "paddle";
  13.    _parent.gotoAndPlay("intro");
  14. };
  15. btnCyclone.onRelease = function()
  16. {
  17.    _global.player = "cyclone";
  18.    _parent.gotoAndPlay("intro");
  19. };
  20. btnCyclone.onRollOver = function()
  21. {
  22.    btnCyclone.bounceBtnIn(120);
  23. };
  24. btnCyclone.onRollOut = function()
  25. {
  26.    btnCyclone.bounceBtnOut();
  27. };
  28.